home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 029a / redate_1.zip / REDATE.BAT next >
DOS Batch File  |  1991-06-19  |  390b  |  21 lines

  1. @echo off
  2.  
  3. :  H.T. Hedges Jr.
  4. :  06/19/91
  5. :  Redates files to the current system date.  Supports DOS wildcards.
  6.  
  7. if %1!==! goto H
  8. if not exist %1 goto X
  9. for %%f in (%1) do copy /b %%f +,, >nul
  10. goto end
  11. :X
  12. echo.
  13. echo ERROR  File named "%1" not found
  14. echo.
  15. goto end
  16. :H
  17. echo.
  18. echo Updates file(s) to current date.  TYPE:  ReDate  [filename]
  19. echo.
  20. :end
  21.